php forum
php mysql forum
php mysql smarty
 
Page 1 of 3 1 2 3 >
Topic Options
#200693 - 09/01/03 06:59 PM [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Author: Gizzy
Original Authors: Greg Hard and LK

Date: 09.01.2003
Requirements: Valid UBB License, UBB 6.6, Wordlets Mods

Demo: Here (see below) and just about every other UBB
Download: here

Thanks: Thanks to my little buddy Weird Al
Notes: There are only minor code modifications, and also added code for quick reply in PM's.
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200694 - 09/01/03 11:31 PM Re: [6.6] [finished] Quick Reply
AllenAyres Offline

I type Like navaho

Registered: 03/10/00
Posts: 25580
Loc: Texas
Thanks gizzy, one of my favorites laugh
_________________________
- Allen wavey
- What Drives You?

Top
#200695 - 09/01/03 11:46 PM Re: [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
smile ... I won't be doin that many ports this coming version due to me not understanding the cp and me starting a new job tomorrow...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200696 - 09/25/03 11:15 PM Re: [6.6] [finished] Quick Reply
RandyM Offline
Spotlight Winner

Registered: 06/28/01
Posts: 2642
Loc: Southern California | Guitar o...
i've redone this hack at least ten times and for some reason users can't change their choice in their profile. Mine is set to yes and I see the box. If I change it to no, it rights a 0 to line 62 (field 61 I believe) of my member file but I still see the box. When I re-enter my profile it says yes again, and if I save my profile it does in fact write a 1 to that line. I still see the box no matter what. One of the other members has the opposite problem, his is always set to no.

Any ideas?
_________________________
3 time Spotlight winner.
Believe The Lie

Top
#200697 - 09/26/03 12:00 AM Re: [6.6] [finished] Quick Reply
RandyM Offline
Spotlight Winner

Registered: 06/28/01
Posts: 2642
Loc: Southern California | Guitar o...
Well, I got it to save the preference in the profile. I removed this from public_edit_profile.pl

Code:
my $quickreply_yes = $user_profile[61] ne '0' ? ' checked="checked"' : '';
my $quickreply_no = $user_profile[61] eq '0' ? ' checked="checked"' : '';
Then I added this to ubb_profile.cgi

Code:
# calibrate quick reply
if ($user_profile[61] eq '1') { $quickreply_yes = 'checked="checked"'; $quickreply_no = ''; }
else { $quickreply_no = 'checked="checked"'; $quickreply_yes = ''; }
after

Code:
# calibrate mass mail
if ($user_profile[14] eq 'yes') { $mm_yes = 'checked="checked"'; $mm_no = ''; }
else { $mm_no = 'checked="checked"'; $mm_yes = ''; }
The bos is still ignoring the choice though. It disappears if I log out though.
_________________________
3 time Spotlight winner.
Believe The Lie

Top
#200698 - 09/26/03 12:06 AM Re: [6.6] [finished] Quick Reply
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
try the obvious choice smile


change
Code:
my $quickreply_yes = $user_profile[61] ne '0' ? ' checked="checked"' : '';
my $quickreply_no = $user_profile[61] eq '0' ? ' checked="checked"' : '';
to

Code:
if($user_profile[61] = 1){
	my $quickreply_no = '';
	my $quickreply_yes = qq( checked="checked");
} else {
	my $quickreply_no = qq( checked="checked");
	my $quickreply_yes = '';
}
that worked for me

Top
#200699 - 09/26/03 12:30 AM Re: [6.6] [finished] Quick Reply
RandyM Offline
Spotlight Winner

Registered: 06/28/01
Posts: 2642
Loc: Southern California | Guitar o...
When I did that I get neither radio button *lit*.
_________________________
3 time Spotlight winner.
Believe The Lie

Top
#200700 - 09/26/03 09:53 AM Re: [6.6] [finished] Quick Reply
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
then instead of = 1, try eq '1', etc

It doesn't work the same way for some people

Top
#200701 - 09/26/03 11:23 AM Re: [6.6] [finished] Quick Reply
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
Actually =1 doesn't work for anyone, it has to be with == tipsy
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#200702 - 09/26/03 11:27 AM Re: [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
tell me if it works and i'll update the text :x...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200703 - 09/26/03 05:29 PM Re: [6.6] [finished] Quick Reply
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Quote:
quote:
Originally posted by LK:
Actually =1 doesn't work for anyone, it has to be with == tipsy
frown I've been coding for 7 years, I can't believe I did that

Top
#200704 - 10/02/03 09:04 PM Re: [6.6] [finished] Quick Reply
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
I found a bug smile

If you're in a private forum, and have permission to reply, but not make topics, the preview post function tells you you don't have permission

Top
#200705 - 10/03/03 11:19 AM Re: [6.6] [finished] Quick Reply
Saturn_Kindred Offline
Member

Registered: 08/17/01
Posts: 50
Quote:
quote:
Originally posted by Weird Al:
try the obvious choice smile


change
Code:
my $quickreply_yes = $user_profile[61] ne '0' ? ' checked="checked"' : '';
my $quickreply_no = $user_profile[61] eq '0' ? ' checked="checked"' : '';
to

Code:
if($user_profile[61] = 1){
	my $quickreply_no = '';
	my $quickreply_yes = qq( checked="checked");
} else {
	my $quickreply_no = qq( checked="checked");
	my $quickreply_yes = '';
}
that worked for me
I tried this fix and it still doesn't take the quick reply out if they select no.

Top
#200706 - 10/03/03 11:28 AM Re: [6.6] [finished] Quick Reply
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
That wouldn't be the code I posted, that would be in the cookies. Look over the lines that resemble
Code:
-value   => [$user_profile[0], md5_hex($new_password), $public_name, $daysprune, $in{u}, $pntf_hidden, $avhide, $new_date_format, $new_time_format, $tzoffset, "", "", "", $quickreply],
and if you've applied any other hacks that change it, just make sure that quick reply is the 4th one after $tzoffset. Personlly, I just don't let people disable it, then all I have to do is hide it to Anonymous users

Top
#200707 - 10/03/03 04:51 PM Re: [6.6] [finished] Quick Reply
RandyM Offline
Spotlight Winner

Registered: 06/28/01
Posts: 2642
Loc: Southern California | Guitar o...
I've verified the hack numerous times, and also verified the cookie code you posted and it still disregards the profile choice. It disappears for users that aren't logged in so I count it as a win.
_________________________
3 time Spotlight winner.
Believe The Lie

Top
#200708 - 10/06/03 05:25 PM Re: [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
I can't re-create the error with users not being able to disable the QR, or the one where it's viewable to everyone when not logged in (on 6.6).

As for the private topics where you can reply in the first place, i'll look at it a little later.
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200709 - 10/06/03 05:42 PM Re: [6.6] [finished] Quick Reply
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
xpert, make sure the user who chose to hide quickreply has set a timezone, etc.. also don't forget to also replace "= 1" with "== 1".
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#200710 - 10/07/03 12:16 AM Re: [6.6] [finished] Quick Reply
Trekkie Offline
Junior Member

Registered: 05/17/01
Posts: 26
Loc: Houston, Tx
Now about making QuickReply CSS savvy...
_________________________
-Trekkie
To point, click and boldly go...

Top
#200711 - 10/13/03 08:33 PM Re: [6.6] [finished] Quick Reply
RandyM Offline
Spotlight Winner

Registered: 06/28/01
Posts: 2642
Loc: Southern California | Guitar o...
It seems that the preview button returns a permissions error in forums where the members are allowed to reply but not start threads. The error is;

Quote:
quote:

FYI You do not have permission to enter this area.
Edit: the error can be duplicated in the announcements forum here.
_________________________
3 time Spotlight winner.
Believe The Lie

Top
#200712 - 10/13/03 10:11 PM Re: [6.6] [finished] Quick Reply
Charles Capps Offline
Admin Emeritus

Registered: 01/09/00
Posts: 5438
Loc: Lynnwood, WA
That might be a problem in the preview code itself.
_________________________
UBB.classic: Love it or hate it, it was mine.

Top
#200713 - 10/13/03 10:32 PM Re: [6.6] [finished] Quick Reply
RandyM Offline
Spotlight Winner

Registered: 06/28/01
Posts: 2642
Loc: Southern California | Guitar o...
The regular reply preview works fine, do you think the code being added to the topic page itself for the quick reply is the issue?
_________________________
3 time Spotlight winner.
Believe The Lie

Top
#200714 - 10/13/03 10:49 PM Re: [6.6] [finished] Quick Reply
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
try changing
Code:
earl = earl + ";type=topic" + ";disable_smilies=" + disabled + ";Signature=" + siggy;
to

Code:
earl = earl + ";type=reply" + ";disable_smilies=" + disabled + ";Signature=" + siggy;

Top
#200715 - 10/13/03 11:16 PM Re: [6.6] [finished] Quick Reply
RandyM Offline
Spotlight Winner

Registered: 06/28/01
Posts: 2642
Loc: Southern California | Guitar o...
That was it, thanks!
_________________________
3 time Spotlight winner.
Believe The Lie

Top
#200716 - 10/27/03 12:26 PM Re: [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Ok, I went through (finally) to verify this hack on a clean version of 6.6.1.

Errors I've found that I can recreate:
Users can't turn off QR.

Errors that i cannot recreate:
QR shows when not logged in.

I'm error checking now for the best way to get it to work *as planned* and I believe Randy's route is so. Will work on other reported errors as I get time.
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200717 - 10/28/03 02:08 AM Re: [6.6] [finished] Quick Reply
RandyM Offline
Spotlight Winner

Registered: 06/28/01
Posts: 2642
Loc: Southern California | Guitar o...
I don't see the QR box when logged out, I do see the first error though. I don't consider it to be a deal breaker though, it's a fantastic add-on.
_________________________
3 time Spotlight winner.
Believe The Lie

Top
#200718 - 10/28/03 12:46 PM Re: [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Agreed, i'm tempted to take off the option to disable it, i don't know anyone who disables it in the first place lol...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200719 - 12/04/03 08:28 PM Re: [6.6] [finished] Quick Reply
PhillipBurum Offline
Member

Registered: 11/02/03
Posts: 155
I'm getting a registration error, and I think this mod might be related, could someone possibly see an error in my ubb_registration? Here is the code about where I think the problem is...


my @thismemarray = (
$user_name, $password, $email, $homepage, $permission, #0

&CensorCheck($in{occupation}), &CensorCheck($in{location}), '0', $this_status, &CensorCheck($in{interests}), #5

$GotTime{HyphenDate}, $in{EmailView}, $sig_html, $in{icq}, $in{AllowMassMail}, #10

$public_name, &CensorCheck($in{customfield1}), &CensorCheck($in{customfield2}), &CensorCheck($in{customfield3}), #15

&CensorCheck($in{customfield4}), $picture, $in{DaysPrune}, $in{aim}, '', '', $in{user_ratings}, #19

$mod_q, $in{private_message}, $in{private_message_notify}, 'yes', '', $new_title, #26

$birthdate, $ipaddy, $in{parent_email}, $pntf_hide, $poll_ban, $avatar_url, # 32

$avline, $tzline #38
$thismemarray[61] = $quickreply;
);

&WriteMemberProfile($next_number, @thismemarray);

# Update the memberslist indexes
# &UpdateOLIdexLine($next_number, join("|#|", map { $_ =~ s/|[#*]|//g; $_; } @thismemarray[5,6,9,16,17,18,19]));
# &UpdatePCdexLine($next_number, 0);
# &UpdatePermsdexLine($next_number, (($mod_q eq "Q" ? 1 : 0) . "|&|" . ($permission =~ m/COPPA/ ? 1 : 0)
# . "|&|" . ($mod_q eq "Q" ? 0 : 1) . "|&|Junior Member|&||&|$GotTime{HyphenDate}"));

# update associated files
my $total_members = scalar(@members) + 1; #the total number of registered users
_________________________
United Devices Points: [img]http://www.ubbdev.com/ud/?u=phillip.burum&s=1[/img]

Top
#200720 - 12/04/03 08:31 PM Re: [6.6] [finished] Quick Reply
PhillipBurum Offline
Member

Registered: 11/02/03
Posts: 155
I added a comma after $tzline and before the #38, now half the error is gone. My website is at

http://4.3.203.28/tin_benders/ and from there you can access the UBB and try to register. I'd really apprecaite the help, my club wants to go public with our site soon, and I fear it isn't ready.

TIA!

--Phillip
_________________________
United Devices Points: [img]http://www.ubbdev.com/ud/?u=phillip.burum&s=1[/img]

Top
#200721 - 12/04/03 08:36 PM Re: [6.6] [finished] Quick Reply
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
take

$thismemarray[61] = $quickreply;


and move it until after the

);

but before the

&WriteMemberProfile($next_number, @thismemarray);

Top
#200722 - 12/04/03 09:52 PM Re: [6.6] [finished] Quick Reply
PhillipBurum Offline
Member

Registered: 11/02/03
Posts: 155
To you, I owe my life. Thank you!!!!!
_________________________
United Devices Points: [img]http://www.ubbdev.com/ud/?u=phillip.burum&s=1[/img]

Top
#200723 - 12/05/03 04:06 PM Re: [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Wow, i missed a lot :x...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200724 - 12/15/03 02:29 PM Re: [6.6] [finished] Quick Reply
Digital Boy Offline
Member

Registered: 05/30/00
Posts: 1871
Loc: Philadelphia
OK, I'm not sure if I'm the only one lost here, BUT:

1) Did we solve the problem of the user not being able to turn off the QR? I think that this is an important feature.

2) Were we able to get one of the radio buttons to show a response? Mine are still both blank.

3) If I have not choice but to disable this option in the user profile, how do I go about doing so?

Thanks,

- MT
_________________________
Matt Torbin
Web and Graphic Arts Engineer
Max Levy Autograph, Inc.
http://www.maxlevy.com/

Top
#200725 - 12/15/03 09:15 PM Re: [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
1. No
2. No
3. If it eludes us, we have not a clue how to tell you to disable it...

Pretty much, with my messed up code for this version :choff:, you'll pretty much need to not even bother with the code for the profile code's since they dont work...

Since QR is stock code in 6.7 which should be released next month (beta this month, final is usually out a month or so after beta) this code is almost obsolete smirk...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200726 - 12/16/03 08:13 AM Re: [6.6] [finished] Quick Reply
Digital Boy Offline
Member

Registered: 05/30/00
Posts: 1871
Loc: Philadelphia
Hmmm... OK.
_________________________
Matt Torbin
Web and Graphic Arts Engineer
Max Levy Autograph, Inc.
http://www.maxlevy.com/

Top
#200727 - 12/17/03 01:24 AM Re: [6.6] [finished] Quick Reply
AllenAyres Offline

I type Like navaho

Registered: 03/10/00
Posts: 25580
Loc: Texas
quick reply is standard in 6.7... coming soon to a website near you wink

http://www.ubbdev.com/test/ubb/ultimatebb.php
_________________________
- Allen wavey
- What Drives You?

Top
#200728 - 12/17/03 08:32 AM Re: [6.6] [finished] Quick Reply
Digital Boy Offline
Member

Registered: 05/30/00
Posts: 1871
Loc: Philadelphia
Do we know when this is being released? This isn't going to be like the old days where they say it's going to be released and it takes months, is it?

- MT
_________________________
Matt Torbin
Web and Graphic Arts Engineer
Max Levy Autograph, Inc.
http://www.maxlevy.com/

Top
#200729 - 12/17/03 10:08 AM Re: [6.6] [finished] Quick Reply
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
the first public beta should be out any day now, and the final version depends on how many bugs are found

Top
#200730 - 12/17/03 01:51 PM Re: [6.6] [finished] Quick Reply
Digital Boy Offline
Member

Registered: 05/30/00
Posts: 1871
Loc: Philadelphia
Just out of curiosity, how much time elapses between releases? Is it worth even modifying them if two months later there's a release?

- MT
_________________________
Matt Torbin
Web and Graphic Arts Engineer
Max Levy Autograph, Inc.
http://www.maxlevy.com/

Top
#200731 - 12/17/03 02:34 PM Re: [6.6] [finished] Quick Reply
Charles Capps Offline
Admin Emeritus

Registered: 01/09/00
Posts: 5438
Loc: Lynnwood, WA
The schedule has been sorta odd lately with all the work that went into 6.6, but we generally try to do a major release every few months.
_________________________
UBB.classic: Love it or hate it, it was mine.

Top
#200732 - 12/24/03 02:12 PM Re: [6.6] [finished] Quick Reply
Digital Boy Offline
Member

Registered: 05/30/00
Posts: 1871
Loc: Philadelphia
I don't mean to undermine your creativity, BUT...

I fixed the problem... sort of. See, if the problem is that little crap about allowing people to have a decisiion in the matter, simply take it out. That's all I did and it worked beautifully. Granted, I've got some clean up to do, but I just tested it with perfect success...
_________________________
Matt Torbin
Web and Graphic Arts Engineer
Max Levy Autograph, Inc.
http://www.maxlevy.com/

Top
#200733 - 12/24/03 02:21 PM Re: [6.6] [finished] Quick Reply
Digital Boy Offline
Member

Registered: 05/30/00
Posts: 1871
Loc: Philadelphia
Also, I think everyone is somewhat missing the point of the "Quck Reply." I mean, if you have basically the same options here as you have when you hit REPLY how is that any different?

What I'm doing now is getting rid of every option BUT the submit buttons. THAT is a quick reply....
_________________________
Matt Torbin
Web and Graphic Arts Engineer
Max Levy Autograph, Inc.
http://www.maxlevy.com/

Top
#200734 - 01/17/04 03:18 PM Re: [6.6] [finished] Quick Reply
Mrs.B Offline
Member

Registered: 08/15/03
Posts: 71
Gizzy

One more old problem laugh

Your site is blocked from our ISP shocked

Can any one upload it for me, please smash

Top
#200735 - 01/17/04 04:22 PM Re: [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
I just love ISP's that block security news sites... love love love lol...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200736 - 01/17/04 05:11 PM Re: [6.6] [finished] Quick Reply
Mrs.B Offline
Member

Registered: 08/15/03
Posts: 71
Quote:
Originally posted by Gizzy:

I just love ISP's that block security news sites... love love love lol...


LOL laugh

Okay We love them too shocked but we want the hack plz mad

tipsy

Top
#200737 - 01/17/04 07:52 PM Re: [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
I don't have any other servers to upload them to...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200738 - 01/17/04 08:26 PM Re: [6.6] [finished] Quick Reply
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
*cough* flareupload *cough*

Top
#200739 - 01/18/04 03:28 AM Re: [6.6] [finished] Quick Reply
Mrs.B Offline
Member

Registered: 08/15/03
Posts: 71
Oh shocked

the upload file in ubbdev, isn't working?

Top
#200740 - 01/18/04 07:57 AM Re: [6.6] [finished] Quick Reply
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#200741 - 01/18/04 11:16 AM Re: [6.6] [finished] Quick Reply
Mrs.B Offline
Member

Registered: 08/15/03
Posts: 71
Thanks Gizzy, im working on it now smile

Top
#200742 - 09/24/04 06:26 AM Re: [6.6] [finished] Quick Reply
radrico Offline
Junior Member

Registered: 08/27/04
Posts: 20
Wow it took an hour but i did it right... and it works. after messing up 2 other versions lol smile Awesome.

Top
#200743 - 10/02/05 03:38 PM Re: [6.6] [finished] Quick Reply
God Offline
Member

Registered: 09/16/05
Posts: 44
I've installed it and it's working. Does anyone know how to add the graemlins to the window of the QR?

Is there also a way to make that spell check button actually say (SP) on it?

Top
#200744 - 10/08/05 06:44 PM Re: [6.6] [finished] Quick Reply
Trekkie Offline
Junior Member

Registered: 05/17/01
Posts: 26
Loc: Houston, Tx
How does one go about making the qdown icon be theme settable for Colorforums like the edit/quote/report icons?
_________________________
-Trekkie
To point, click and boldly go...

Top
#200745 - 10/08/05 08:59 PM Re: [6.6] [finished] Quick Reply
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Replace
Code:
				document.write('<a href="javascript:return false;" onclick="insertAtCaret(document.replier.message, unescape(\''+quote+'\')); document.replier.message.focus(); return false;"><img border="0" src="$vars_config{NonCGIURL}/qdown.gif" alt="Quick Reply w/quote" /></a>&nbsp;');
with
Code:
				document.write('<a href="javascript:return false;" onclick="insertAtCaret(document.replier.message, unescape(\''+quote+'\')); document.replier.message.focus(); return false;"><img border="0" src="$vars_config{NonCGIURL}'+style+'/qdown.gif" alt="Quick Reply w/quote" /></a>&nbsp;');

Top
#200746 - 10/08/05 10:13 PM Re: [6.6] [finished] Quick Reply
Trekkie Offline
Junior Member

Registered: 05/17/01
Posts: 26
Loc: Houston, Tx
Thanks as always Al.
_________________________
-Trekkie
To point, click and boldly go...

Top
#200747 - 10/08/05 11:40 PM Re: [6.6] [finished] Quick Reply
Trekkie Offline
Junior Member

Registered: 05/17/01
Posts: 26
Loc: Houston, Tx
Oh wait, you forgot something.

Add
Code:
/graphics/
before
Code:
'+style+'
_________________________
-Trekkie
To point, click and boldly go...

Top
Page 1 of 3 1 2 3 >



Moderator:  Charles, Gizmo 
Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks